home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / CONVRT14.ZIP / UTILS.DOC < prev   
Text File  |  1994-07-19  |  3KB  |  68 lines

  1.                    Convert Utilities, (c) 1994 Jesus Villena
  2.                       Universidad Politecnica de Valencia
  3.                          Facultad de Informatica
  4.  
  5.                      INTERNET:  jvillena@dsic.upv.es
  6.  
  7.                               Version 1.2B
  8.  
  9. ················································································
  10. This text is a description of SND2WAV and JOIN, the programs supplied with
  11. Convert from version 1.2B.
  12. ················································································
  13.  
  14.  
  15. SND2WAV
  16. ·······
  17.  
  18. SND2WAV is a external program which carry out the conversion of raw audio data
  19. files to Windows WAV format. Raw is not added to Convert like a new format
  20. because Convert uses header info from the input file to obtain its format,
  21. and raw formats haven't header.
  22.  
  23. SND2WAV would be used if Convert fails. It supports multiple options in command
  24. line to determinate parameters of the file (i.e. samplerate, resolution...).
  25.  
  26.         Sintaxis:  SND2WAV InputPath [-Option(s)]
  27.                    Options :
  28.                             -i,-m   Sets Intel or Motorola Mode
  29.                             -8,-16  Sets 8 or 16 Bits Mode
  30.                             -s,-u   Sets Signed or Unsigned Mode
  31.                             -1,-2   Sets Mono or Stereo Mode
  32.                             -f#n    Sets Sample Rate (in Hz)
  33.                             -b#n    Sets Begin of Data (in Bytes)
  34.                             -l#n    Sets Length of Data (in Bytes)
  35.  
  36.         Defaults are Intel, 8 Bits, Unsigned, Mono, 44100 Hz and Begin at 0
  37.  
  38. InputPath accepts standard DOS wildcards to specify various files to convert.
  39.  
  40. If you don't known how the file is, you can test with varios options, until
  41. the resulting file sound well.
  42.  
  43. This utility is used commonly inside a batch file:
  44.  
  45.         REM FILE: cd2wav.bat
  46.         REM Converts raw audio data from a CD into a WAV file
  47.         SND2WAV %1 -m -16 -s -2 -f44100 -b0
  48.  
  49.  
  50.  
  51. JOIN
  52. ····
  53.  
  54. Commonly, large sampler files are cut into smaller pieces to save them into
  55. disquettes. JOIN simply lets link these pieces to obtain the original large
  56. file.
  57.  
  58. In this version, JOIN supports only Kurzweil and Ensoniq files. In order to
  59. join all pieces together, they would be renamed to a same name and a extension
  60. like ".KR?" or ".IN?", where ? indicates a index. The resulting file will have
  61. ".KRZ" or ".INS".
  62.  
  63.         Sintaxis:  JOIN FileName.[KRZ/INS/EFE]
  64.  
  65. Example: JOIN heavy.ins will read from heavy.in1, heavy.in2 ...
  66.          JOIN chanter.krz will read from chanter.kr1, chanter.kr2 ...
  67.  
  68.